This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Connection to Domino via DIIOP crashes J2EE server ~Umberto Nongeroson 19.Jan.04 03:40 PM a Web browser Domino Server All ReleasesAll Platforms
Not sure if it'll help or not but as of R6x, a port can now be specified when establishing a CORBA connection to the notes server. For example,
String astrIP = new StringBuffer(32).append("127.0.0.1").append(":63148").toString();
this.nsess = NotesFactory.createSession(astrIP, "some user name", "some user password");
With no port specified, it seems to depend on the HTTP server task. Using the port has made for more reliable connections in my experience.
dgg